找传奇、传世资源到传世资源站!

php获取微信code.openid.名字和头像

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

from clipboard<?php/** *授权获取用户信息。包括头像、昵称 */error_reporting(E_ALL & ~E_NOTICE);include './oauth2.php';$code=$_GET['code'];//code 微信接口参数(必须)$state=$_GET['state'];//state微信接口参数(不需传参则不用);若传参可考虑规则: 'act'.'arg1'.'add'.'arg2'$APPID='wxa3d16526503e71f4';$SECRET='67e2daa17b8769ceb991abbf74c5e52a';$REDIRECT_URL='http://www.rendersky.cn/demo/testuserinfo.php';//当前页面地址// $REDIRECT_URL="http://www.rendersky.cn/qp/index.html?openid=".$openid."";//当前页面地址$oauth2=new oauth2();$oauth2->init($APPID, $SECRET,$REDIRECT_URL);if(empty($code)){$oauth2->get_code_by_authorize($state);//获取code,会重定向到当前页。若需传参,使用$state变量传参。}$data=$oauth2->get_userinfo_by_authorize();echo '</br>welcome test!';echo '</br>nickname: '.$data['nickname'];echo '</br>headimgurl: '.$data['headimgurl'];?>

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复